home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Lists / Prepositions.h < prev   
Encoding:
Text File  |  1997-06-28  |  350 b   |  18 lines  |  [TEXT/CWIE]

  1. // Prepositions.h
  2.  
  3. #ifndef Prepositions_h
  4. #define Prepositions_h
  5.  
  6. enum AtStart            { atStart };
  7. enum AtEnd                 { atEnd };
  8. enum Nowhere            { nowhere };
  9. enum Before                { before };
  10. enum After                { after };
  11. enum BeforeStart        { beforeStart };
  12. enum AfterEnd            { afterEnd };
  13. enum Above                { above };
  14. enum Below                { below };
  15. enum AtRoot                { atRoot };
  16.  
  17. #endif
  18.